home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / e / misc.save / 000005_gerberb@zenez.com_Wed Oct 18 13:13:51 2006.msg < prev    next >
Internet Message Format  |  2020-01-01  |  3KB

  1. Path: reader2.panix.com!reader1.panix.com!panix!news.maxwell.syr.edu!postnews.google.com!m73g2000cwd.googlegroups.com!not-for-mail
  2. From: gerberb@zenez.com
  3. Newsgroups: comp.protocols.kermit.misc
  4. Subject: Re: Kermit - internet - kermit - com port connection.
  5. Date: 17 Oct 2006 13:14:18 -0700
  6. Organization: http://groups.google.com
  7. Lines: 73
  8. Message-ID: <1161116058.833122.189000@m73g2000cwd.googlegroups.com>
  9. References: <Pine.LNX.4.64.0609270635070.15448@xenau.zenez.com>
  10.    <slrnehnhe2.iia.fdc@panix1.panix.com>
  11. NNTP-Posting-Host: 198.60.105.213
  12. Mime-Version: 1.0
  13. Content-Type: text/plain; charset="iso-8859-1"
  14. X-Trace: posting.google.com 1161116064 11158 127.0.0.1 (17 Oct 2006 20:14:24 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: Tue, 17 Oct 2006 20:14:24 +0000 (UTC)
  17. In-Reply-To: <slrnehnhe2.iia.fdc@panix1.panix.com>
  18. User-Agent: G2/1.0
  19. X-HTTP-UserAgent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.0.7) Gecko/20060911 SUSE/1.0.5-1.1 SeaMonkey/1.0.5,gzip(gfe),gzip(gfe)
  20. Complaints-To: groups-abuse@google.com
  21. Injection-Info: m73g2000cwd.googlegroups.com; posting-host=198.60.105.213;
  22.    posting-account=dcuIBwwAAACGYdN6_x6P-BpuEmzQrAjs
  23. Xref: panix comp.protocols.kermit.misc:15576
  24.  
  25. Frank Da Cruz wrote:
  26. > On 2006-09-27, Boyd Lynn Gerber <gerberb@zenez.com> wrote:
  27. > : It has been a long time since I have had to do this and I am not doing
  28. > : something right.
  29. > :
  30. > : I have a linux system that uses kermit over the internet to connect to an
  31. > : ms kermit in server mode.  What I need to do is on the ms kermit get
  32. > : files and send them to the main kermit system.
  33. > :
  34. > : When on the MS kermit I do the following.
  35. > :
  36. > : set port 1
  37. > : set baud 9600
  38. > : remote login Account
  39. > : get data file.name
  40. > : ...
  41. > : exit
  42. ...
  43. > Let's see if I understand.  You have a DOS PC that is on a network.
  44. > You want to make a connection to it over the network from a Linux system
  45. > and then you want the DOS system to make a serial-port connection to
  46. > a third system?  I'm not sure I'm seeing the picture.  MS-DOS Kermit can
  47. > receive incoming connections over the Internet, e.g. on TCP port 3000:
  48. >
  49. >   set port tcp/ip * 3000
  50. >
  51. > or it can make connections, but it can't do both at once; that is, it
  52. > can't act as a relay.  Is that what you're looking for?
  53.  
  54. Thanks, that is what I was trying to do.  I was trying to do both.
  55.  
  56. I setup ssh on the different MS boxes.  They had purchased MS Kermit
  57. 3.16.
  58. I am able to ssh to the box and then after I have scp  the mskermit.ini
  59. file do
  60. cd c:/kermit/backoffice/
  61. ./kermit
  62.  
  63. And it connects to the port and I am able to get all  the files from
  64. the registers.
  65.  
  66. ssh -luser 192.168.0.200
  67. cd c:/kermit/backoffice/
  68. ./kermit
  69.  
  70. All the text for the files to download.
  71.  
  72. but if I use ssh to execute it as a remote command...
  73.  
  74. ssh -luser 192.168.0.200 c:/kermit/backoffice/kermit
  75.  
  76. gives me this....
  77.  
  78. c://kermit/hbboys/backoffice/kermit
  79.  IBM-PC MS-DOS Kermit: 3.16 4 May 1999
  80. Copyright (C) Trustees of Columbia University 1982, 1999.
  81.  
  82. Type ? or HELP for help
  83.  
  84. MS-Kermit>^A^A^A
  85. ?Text exceeded available buffer capacity
  86. MS-Kermit>
  87.  
  88. Instead of the download.  Is there something that I can do to get it to
  89. run via ssh with commands?
  90.  
  91. Any ideas? on what I can do to achive this?
  92.  
  93. Thanks,
  94.  
  95. Boyd Gerber
  96. gerberb@zenez.com
  97.